home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / sensible-utils.postrm < prev    next >
Encoding:
Text File  |  2010-04-06  |  308 b   |  17 lines

  1. #! /bin/sh -e
  2.  
  3. case "$1" in
  4.     (remove|disappear)
  5.     if which update-mime >/dev/null;
  6.     then
  7.             update-mime
  8.     fi
  9.         ;;
  10.     (upgrade|failed-upgrade|purge|abort-install|abort-upgrade)
  11.         ;;
  12.     (*)
  13.         echo "prerm called with unknown argument \`$1'" >&2
  14.         exit 1
  15.     ;;
  16. esac
  17.